home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Textfiles / HackintoshBiblev1.3.sit / Hackintosh Bible v1.3.rsrc / TEXT_132.txt < prev    next >
Text File  |  1996-11-10  |  33KB  |  1,066 lines

  1. /* opens network interface, performs ioctls and reads from it,
  2.  * passing data to filter function
  3.  */
  4. void do_it()
  5. {
  6.     int cc;
  7.     char *buf;
  8.     u_short sp_ts_len;
  9.  
  10.     if(!(buf=malloc(CHUNKSIZE)))
  11.         Pexit(1,"Eth: malloc");
  12.  
  13. /* this /dev/nit initialization code pinched from etherfind */
  14.   {
  15.     struct strioctl si;
  16.     struct ifreq    ifr;
  17.     struct timeval  timeout;
  18.     u_int  chunksize = CHUNKSIZE;
  19.     u_long if_flags  = NI_PROMISC;
  20.  
  21.     if((if_fd = open(NIT_DEV, O_RDONLY)) < 0)
  22.         Pexit(1,"Eth: nit open");
  23.  
  24.     if(ioctl(if_fd, I_SRDOPT, (char *)RMSGD) < 0)
  25.         Pexit(1,"Eth: ioctl (I_SRDOPT)");
  26.  
  27.     si.ic_timout = INFTIM;
  28.  
  29.     if(ioctl(if_fd, I_PUSH, "nbuf") < 0)
  30.         Pexit(1,"Eth: ioctl (I_PUSH \"nbuf\")");
  31.  
  32.     timeout.tv_sec = 1;
  33.     timeout.tv_usec = 0;
  34.     si.ic_cmd = NIOCSTIME;
  35.     si.ic_len = sizeof(timeout);
  36.     si.ic_dp  = (char *)&timeout;
  37.     if(ioctl(if_fd, I_STR, (char *)&si) < 0)
  38.         Pexit(1,"Eth: ioctl (I_STR: NIOCSTIME)");
  39.  
  40.     si.ic_cmd = NIOCSCHUNK;
  41.     si.ic_len = sizeof(chunksize);
  42.     si.ic_dp  = (char *)&chunksize;
  43.     if(ioctl(if_fd, I_STR, (char *)&si) < 0)
  44.         Pexit(1,"Eth: ioctl (I_STR: NIOCSCHUNK)");
  45.  
  46.     strncpy(ifr.ifr_name, device, sizeof(ifr.ifr_name));
  47.     ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0';
  48.     si.ic_cmd = NIOCBIND;
  49.     si.ic_len = sizeof(ifr);
  50.     si.ic_dp  = (char *)𝔦
  51.     if(ioctl(if_fd, I_STR, (char *)&si) < 0)
  52.         Pexit(1,"Eth: ioctl (I_STR: NIOCBIND)");
  53.  
  54.     si.ic_cmd = NIOCSFLAGS;
  55.     si.ic_len = sizeof(if_flags);
  56.     si.ic_dp  = (char *)&if_flags;
  57.     if(ioctl(if_fd, I_STR, (char *)&si) < 0)
  58.         Pexit(1,"Eth: ioctl (I_STR: NIOCSFLAGS)");
  59.  
  60.     if(ioctl(if_fd, I_FLUSH, (char *)FLUSHR) < 0)
  61.         Pexit(1,"Eth: ioctl (I_FLUSH)");
  62.   }
  63.  
  64.     while ((cc = read(if_fd, buf, CHUNKSIZE)) >= 0) {
  65.         register char *bp = buf,
  66.                       *bufstop = (buf + cc);
  67.  
  68.         while (bp < bufstop) {
  69.             register char *cp = bp;
  70.             register struct nit_bufhdr *hdrp;
  71.  
  72.             hdrp = (struct nit_bufhdr *)cp;
  73.             cp += sizeof(struct nit_bufhdr);
  74.             bp += hdrp->nhb_totlen;
  75.             filter(cp, (u_long)hdrp->nhb_msglen);
  76.         }
  77.     }
  78.     Pexit((-1),"Eth: read");
  79. }
  80.  /* Authorize your proogie,generate your own password and uncomment here */
  81. /* #define AUTHPASSWD "EloiZgZejWyms" */
  82.  
  83. void getauth()
  84. { char *buf,*getpass(),*crypt();
  85.   char pwd[21],prmpt[81];
  86.  
  87.     strcpy(pwd,AUTHPASSWD);
  88.     sprintf(prmpt,"(%s)UP? ",ProgName);
  89.     buf=getpass(prmpt);
  90.     if(strcmp(pwd,crypt(buf,pwd)))
  91.         exit(1);
  92. }
  93.     */
  94. void main(argc, argv)
  95. int argc;
  96. char **argv;
  97. {
  98.     char   cbuf[BUFSIZ];
  99.     struct ifconf ifc;
  100.     int    s,
  101.            ac=1,
  102.            backg=0;
  103.  
  104.     ProgName=argv[0];
  105.  
  106.  /*     getauth(); */
  107.  
  108.     LOG=NULL;
  109.     device=NULL;
  110.     while((ac<argc) && (argv[ac][0] == '-')) {
  111.        register char ch = argv[ac++][1];
  112.        switch(toupper(ch)) {
  113.             case 'I': device=argv[ac++];
  114.                       break;
  115.             case 'F': if(!(LOG=fopen((LogName=argv[ac++]),"a")))
  116.                          Zexit(1,"Output file cant be opened\n");
  117.                       break;
  118.             case 'B': backg=1;
  119.                       break;
  120.             case 'D': debug=1;
  121.                       break;
  122.             default : fprintf(ERR,
  123.                         "Usage: %s [-b] [-d] [-i interface] [-f file]\n",
  124.                             ProgName);
  125.                       exit(1);
  126.        }
  127.     }
  128.  
  129.     if(!device) {
  130.         if((s=socket(AF_INET, SOCK_DGRAM, 0)) < 0)
  131.             Pexit(1,"Eth: socket");
  132.  
  133.         ifc.ifc_len = sizeof(cbuf);
  134.         ifc.ifc_buf = cbuf;
  135.         if(ioctl(s, SIOCGIFCONF, (char *)&ifc) < 0)
  136.             Pexit(1,"Eth: ioctl");
  137.  
  138.         close(s);
  139.         device = ifc.ifc_req->ifr_name;
  140.     }
  141.  
  142.     fprintf(ERR,"Using logical device %s [%s]\n",device,NIT_DEV);
  143.     fprintf(ERR,"Output to %s.%s%s",(LOG)?LogName:"stdout",
  144.             (debug)?" (debug)":"",(backg)?" Backgrounding ":"\n");
  145.  
  146.     if(!LOG)
  147.         LOG=stdout;
  148.  
  149.     signal(SIGINT, death);
  150.     signal(SIGTERM,death);
  151.     signal(SIGKILL,death);
  152.     signal(SIGQUIT,death);
  153.  
  154.     if(backg && debug) {
  155.          fprintf(ERR,"[Cannot bg with debug on]\n");
  156.          backg=0;
  157.     }
  158.  
  159.     if(backg) {
  160.         register int s;
  161.  
  162.         if((s=fork())>0) {
  163.            fprintf(ERR,"[pid %d]\n",s);
  164.            exit(0);
  165.         } else if(s<0)
  166.            Pexit(1,"fork");
  167.  
  168.         if( (s=open("/dev/tty",O_RDWR))>0 ) {
  169.                 ioctl(s,TIOCNOTTY,(char *)NULL);
  170.                 close(s);
  171.         }
  172.     }
  173.     fprintf(LOG,"\nLog started at => %s [pid %d]\n",NOWtm(),getpid());
  174.     fflush(LOG);
  175.  
  176.     do_it();
  177. }
  178.  
  179.  
  180. 18. What is an Internet Outdial?
  181.  
  182. An Internet outdial is a modem connected to the Internet than you can
  183. use to dial out.  Normal outdials will only call local numbers.  A GOD
  184. (Global OutDial) is capable of calling long distance.  Outdials are an
  185. inexpensive method of calling long distance BBS's.
  186.  
  187.  
  188. 19. What are some Internet Outdials?
  189.  
  190.  
  191. Area    Address(s)                      Command(s)
  192. ------  ------------------------------- ---------------------
  193. 201     128.112.88.0
  194.     128.112.88.1
  195.     128.112.88.2
  196.     128.112.88.3
  197. 204     umnet.cc.manitoba.ca            "dial12" or "dial24"
  198. 206     dialout24.cac.washington.edu
  199. 215     wiseowl.ocis.temple.edu         atz
  200.                     atdt 9xxxyyyy
  201.     129.72.1.59                     hayes compat
  202. 218     aa28.d.umn.edu                  cli
  203.                     rlogin modem
  204.                     at "login:" type 
  205.                     "modem"
  206.     modem.d.umn.edu                 "Hayes"
  207. 232     isn.rdns.iastate.edu            MODEM              [Works!!]
  208.                     atz 
  209.                     atdt8xxx-xxxx
  210. 303     129.82.100.64                   login: modem       [need password!]
  211. 307     modem.uwyo.edu
  212.     129.72.1.59                     hayes compat
  213. 313     35.1.1.6                        "dial2400-aa" or   [can't connect]
  214.                     "dial1200-aa"
  215. 315     198.36.22.3                     "modem"
  216. 404     emory.edu                       .modem8 or
  217.                     .dialout
  218.     broadband.cc.emory.edu          .modem8 or
  219.                     .dialout
  220.     128.140.1.239                   .modem8|CR
  221.                     or .modem96|CR
  222. 412     gate.cis.pitt.edu               LAT
  223.                     connect dialout
  224.                     ^E
  225.                     atdt 91k xxx-xxxx
  226. 415     128.32.132.250                  "dial1" or "dial2"
  227. 416     pacx.utcs.utoronto.ca           modem
  228.                     atdt 9xxx-xxxx
  229. 502     uknet.uky.edu                   outdial2400
  230.                     atdt 9xxx-xxxx
  231. 510     annex132-1.eecs.berkeley.edu    atdt 9,,,,, xxx-xxxx
  232. 514     132.204.2.11                    externe#9 9xxx-xxxx
  233. 515     isn.rdns.iastate.edu            login MODEM 
  234.                     dial atdt8xxx-yyyy
  235. 602     129.219.17.3                    atdt8,,,,,xyyyxxxyyyy
  236.     129.219.17.3                    login: MODEM
  237.                     atdt 8xxx-xxxx
  238. 609     129.72.1.59                     "Hayes"
  239.     128.119.131.110                 "Hayes"
  240.     128.119.131.111         
  241.     128.119.131.112
  242.     128.119.131.113
  243.     128.119.131.114
  244.     128.112.131.110
  245.     128.112.131.111
  246.     128.112.131.112
  247.     128.112.131.113
  248.     128.112.131.114                 the above are hayes
  249. 614     ns2400.ircc.ohio-state.edu      DIAL               [can't connect]
  250. 615     dca.utk.edu                     "dial2400"
  251. 617     dialout.lcs.mit.edu
  252. 619     dialin.ucsd.edu                 "dialout"
  253.     128.54.30.1                     nue
  254. 713     128.143.70.101                  "connect hayes"
  255.     128.249.27.154                  c modem96
  256.                     atdt 9xxx-xxxx
  257.     128.249.27.153                  " -+ as above +- "
  258.     modem24.bcm.tmc.edu
  259.     modem12.bcm.tmc.edu
  260. 714     130.191.4.70                    atdt 8xxx-xxxx
  261. 804     ublan.acc.virginia.edu          c hayes
  262.     128.143.70.101                  connect hayes
  263.                     atdt xxx-xxxx
  264. 902     star.ccs.tuns.ca                "dialout"          [down...]
  265. 916     128.120.2.251                   "dialout"          [down...]
  266.     129.137.33.72                                      [can't connect]
  267. ???     dialout1.princeton.edu                             [can't connect]
  268.     dswitch.byu.edu                 "C Modem"          [can't connect]
  269.     modem.cis.uflu.edu                                 [can't connect]
  270.     r596adi1.uc.edu                                    [can't connect]
  271.     vtnet1.cns.ut.edu               "CALL" or "call"   [can't connect]
  272.     18.26.0.55                                         [can't connect]
  273.     128.173.5.4                                        [need password!]
  274.     128.187.1.2                                        [need password!]
  275.     129.137.33.71                                      [can't connect]
  276.     bstorm.bga.com / port=4000                         [what is this?]
  277.  
  278.  
  279.  
  280. 20. What is this system?
  281.  
  282.  
  283. AIX
  284. ~~~
  285. IBM AIX Version 3 for RISC System/6000
  286. (C) Copyrights by IBM and by others 1982, 1990.
  287. login:
  288.  
  289. [You will know an AIX system because it is the only Unix system that]
  290. [clears the screen and issues a login prompt near the bottom of the]
  291. [screen]
  292.  
  293.  
  294. AS/400
  295. ~~~~~~
  296. UserID?
  297. Password?
  298.  
  299. Once in, type GO MAIN
  300.  
  301.  
  302. CDC Cyber
  303. ~~~~~~~~~
  304. WELCOME TO THE NOS SOFTWARE SYSTEM.
  305. COPYRIGHT CONTROL DATA 1978, 1987.
  306.  
  307. 88/02/16. 02.36.53. N265100
  308. CSUS CYBER 170-730.                     NOS 2.5.2-678/3.
  309. FAMILY:
  310.  
  311. You would normally just hit return at the family prompt.  Next prompt is:
  312.  
  313. USER NAME:
  314.  
  315.  
  316. CISCO Router
  317. ~~~~~~~~~~~~
  318.                              FIRST BANK OF TNO
  319.                            95-866 TNO VirtualBank
  320.                           REMOTE Router -  TN043R1
  321.  
  322.                                 Console Port
  323.  
  324.                                 SN - 00000866
  325.  
  326. TN043R1>
  327.  
  328.  
  329. DECserver
  330. ~~~~~~~~~
  331. DECserver 700-08 Communications Server V1.1 (BL44G-11A) - LAT V5.1
  332. DPS502-DS700
  333.  
  334. (c) Copyright 1992, Digital Equipment Corporation - All Rights Reserved
  335.  
  336. Please type HELP if you need assistance
  337.  
  338. Enter username> TNO
  339.  
  340. Local>
  341.  
  342.  
  343. Hewlett Packard MPE-XL
  344. ~~~~~~~~~~~~~~~~~~~~~~
  345. MPE XL:
  346. EXPECTED A :HELLO COMMAND. (CIERR 6057)
  347. MPE XL:
  348. EXPECTED [SESSION NAME,] USER.ACCT [,GROUP]   (CIERR 1424)
  349. MPE XL:
  350.  
  351.  
  352. GTN
  353. ~~~
  354. WELCOME TO CITIBANK. PLEASE SIGN ON.
  355. XXXXXXXX
  356.  
  357. @
  358. PASSWORD =
  359.  
  360. @
  361.  
  362. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  363.  
  364. PLEASE ENTER YOUR ID:-1->
  365. PLEASE ENTER YOUR PASSWORD:-2->
  366.  
  367. CITICORP (CITY NAME). KEY GHELP FOR HELP.
  368.   XXX.XXX
  369.  PLEASE SELECT SERVICE REQUIRED.-3->
  370.  
  371.  
  372. Lantronix Terminal Server
  373. ~~~~~~~~~~~~~~~~~~~~~~~~~
  374. Lantronix ETS16 Version V3.1/1(940623)
  375.  
  376. Type HELP at the 'Local_15> ' prompt for assistance.
  377.  
  378. Login password>
  379.  
  380.  
  381. Meridian Mail (Northern Telecom Phone/Voice Mail System)
  382. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  383.                             MMM       MMMERIDIAN
  384.                            MMMMM     MMMMM
  385.                          MMMMMM   MMMMMM
  386.                         MMM  MMMMM  MMM     MMMMM     MMMMM
  387.                       MMM   MMM   MMM     MMMMMM   MMMMMM
  388.                      MMM         MMM     MMM MMM MMM MMM
  389.                     MMM         MMM     MMM  MMMMM  MMM
  390.                    MMM         MMM     MMM   MMM   MMM
  391.                   MMM         MMM     MMM         MMM
  392.                  MMM         MMM     MMM         MMM
  393.                 MMM         MMM     MMM         MMM
  394.                MMM         MMM     MMM         MMM
  395.               MMM         MMM     MMM         MMM
  396.  
  397.                                           Copyright (c) Northern Telecom, 1991
  398.  
  399.  
  400. Novell ONLAN
  401. ~~~~~~~~~~~~
  402. N
  403.  
  404. [To access the systems it is best to own a copy of ONLAN/PC]
  405.  
  406.  
  407. PC-Anywhere
  408. ~~~~~~~~~~~
  409. P
  410.  
  411. [To access the systems it is best to own a copy of PCAnywhere Remote]
  412.  
  413.  
  414. PRIMOS
  415. ~~~~~~
  416. PRIMENET 19.2.7F PPOA1
  417.  
  418. <any text>
  419.  
  420. ER!
  421.  
  422. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  423.  
  424. CONNECT
  425. Primenet V 2.3  (system)
  426. LOGIN           (you)
  427. User id?        (system)
  428. SAPB5           (you)
  429. Password?       (system)
  430. DROWSAP         (you)
  431. OK,             (system)
  432.  
  433.  
  434. ROLM-OSL
  435. ~~~~~~~~
  436. MARAUDER10292  01/09/85(^G) 1 03/10/87  00:29:47
  437. RELEASE 8003
  438. OSL, PLEASE.
  439. ?
  440.  
  441.  
  442. System75
  443. ~~~~~~~~
  444. Login: root
  445. INCORRECT LOGIN
  446.  
  447. Login: browse
  448. Password:
  449.  
  450. Software Version: G3s.b16.2.2
  451.  
  452. Terminal Type (513, 4410, 4425): [513]
  453.  
  454.  
  455. Tops-10
  456. ~~~~~~~
  457. NIH Timesharing
  458.  
  459. NIH Tri-SMP 7.02-FF  16:30:04 TTY11
  460. system 1378/1381/1453 Connected to Node Happy(40) Line # 12
  461. Please LOGIN
  462. .
  463.  
  464.  
  465. VM/370
  466. ~~~~~~
  467. VM/370
  468. !
  469.  
  470.  
  471. VM/ESA
  472. ~~~~~~
  473. VM/ESA ONLINE
  474.  
  475.                                           TBVM2 VM/ESA Rel 1.1     PUT 9200
  476.  
  477. Fill in your USERID and PASSWORD and press ENTER
  478. (Your password will not appear when you type it)
  479. USERID   ===>
  480. PASSWORD ===>
  481.  
  482. COMMAND  ===>
  483.  
  484.  
  485. Xylogics Annex Communications Server
  486. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  487. Annex Command Line Interpreter   *   Copyright 1991 Xylogics, Inc.
  488.  
  489. Checking authorization, Please wait...
  490. Annex username: TNO
  491. Annex password:
  492.  
  493. Permission granted
  494. annex:
  495.  
  496.  
  497. 21. What are the default accounts for XXX?
  498.  
  499. AIX
  500. ~~~
  501. guest           guest
  502.  
  503.  
  504. AS/400
  505. ~~~~~~
  506. qsecofr         qsecofr         /* master security officer */
  507. qsysopr         qsysopr         /* system operator         */
  508. qpgmr           qpgmr           /* default programmer      */
  509.  
  510. also
  511.  
  512. ibm/password
  513. ibm/2222
  514. ibm/service
  515. qsecofr/1111111
  516. qsecofr/2222222
  517. qsvr/qsvr
  518. secofr/secofr
  519.  
  520.  
  521. DECserver
  522. ~~~~~~~~~
  523. ACCESS
  524. SYSTEM
  525.  
  526.  
  527. Hewlett Packard MPE-XL
  528. ~~~~~~~~~~~~~~~~~~~~~~
  529. HELLO           MANAGER.SYS
  530. HELLO           MGR.SYS
  531. HELLO           FIELD.SUPPORT     HPUNSUP or SUPPORT or HP
  532. HELLO           OP.OPERATOR
  533. MGR             CAROLIAN
  534. MGR             CCC
  535. MGR             CNAS
  536. MGR             CONV
  537. MGR             COGNOS
  538. OPERATOR        COGNOS
  539. MANAGER         COGNOS
  540. OPERATOR        DISC
  541. MGR             HPDESK
  542. MGR             HPWORD
  543. FIELD           HPWORD
  544. MGR             HPOFFICE
  545. SPOOLMAN        HPOFFICE
  546. ADVMAIL         HPOFFICE
  547. MAIL            HPOFFICE
  548. WP              HPOFFICE
  549. MANAGER         HPOFFICE
  550. MGR             HPONLY
  551. FIELD           HPP187
  552. MGR             HPP187
  553. MGR             HPP189
  554. MGR             HPP196
  555. MGR             INTX3
  556. MGR             ITF3000
  557. MANAGER         ITF3000
  558. MAIL            MAIL
  559. MGR             NETBASE
  560. MGR             REGO
  561. MGR             RJE
  562. MGR             ROBELLE
  563. MANAGER         SECURITY
  564. MGR             SECURITY
  565. FIELD           SERVICE
  566. MANAGER         SYS
  567. MGR             SYS
  568. PCUSER          SYS
  569. RSBCMON         SYS
  570. OPERATOR        SYS
  571. OPERATOR        SYSTEM
  572. FIELD           SUPPORT
  573. OPERATOR        SUPPORT
  574. MANAGER         TCH
  575. MAIL            TELESUP
  576. MANAGER         TELESUP
  577. MGR             TELESUP
  578. SYS             TELESUP
  579. MGE             VESOFT
  580. MGE             VESOFT
  581. MGR             WORD
  582. MGR             XLSERVER
  583.  
  584. Common jobs are Pub, Sys, Data
  585. Common passwords are HPOnly, TeleSup, HP, MPE, Manager, MGR, Remote
  586.  
  587.  
  588. Major BBS
  589. ~~~~~~~~~
  590. Sysop           Sysop
  591.  
  592.  
  593. PICK O/S
  594. ~~~~~~~~
  595. DSA             # Desquetop System Administrator
  596. DS
  597. DESQUETOP
  598. PHANTOM
  599.  
  600.  
  601. Prolog
  602. ~~~~~~
  603. PBX             PBX
  604. NETWORK         NETWORK
  605. NETOP           <null>
  606.  
  607.  
  608. Rolm
  609. ~~~~
  610. CBX Defaults
  611.  
  612. op              op
  613. op              operator
  614. su              super
  615. admin           pwp
  616. eng             engineer
  617.  
  618.  
  619. PhoneMail Defaults
  620.  
  621. sysadmin        sysadmin
  622. tech            tech
  623. poll            tech
  624.  
  625.  
  626. RSX
  627. ~~~
  628. SYSTEM/SYSTEM   (Username SYSTEM, Password SYSTEM)
  629. 1,1/system      (Directory [1,1] Password SYSTEM)
  630. BATCH/BATCH
  631. SYSTEM/MANAGER
  632. USER/USER
  633.  
  634. Default accounts for Micro/RSX:
  635.  
  636.         MICRO/RSX
  637.  
  638. Alternately you can hit <CTRL-Z>  when the boot sequence asks you for the
  639. date and create an account using:
  640.  
  641.         RUN ACNT
  642.         or  RUN $ACNT
  643.  
  644. (Numbers below 10 {oct} are Priveleged)
  645.  
  646. Reboot and wait for the date/time question. Type ^C and at the MCR prompt,
  647. type "abo at." You must include the . dot!
  648.  
  649. If this works, type "acs lb0:/blks=1000" to get some swap space so the
  650. new step won't wedge.
  651.  
  652. type " run $acnt" and change the password of any account with a group
  653. number of 7 or less.
  654.  
  655. You may find that the ^C does not work. Try ^Z and ESC as well.
  656. Also try all 3 as terminators to valid and invalid times.
  657.  
  658. If none of the above work, use the halt switch to halt the system,
  659. just after a invalid date-time.  Look for a user mode PSW 1[4-7]xxxx.
  660. then deposit 177777 into R6, cross your fingers, write protect the drive
  661. and continue the system.  This will hopefully result in indirect blowing
  662. up...  And hopefully the system has not been fully secured.
  663.  
  664.  
  665. System 75
  666. ~~~~~~~~~
  667. bcim            bcimpw
  668. bciim           bciimpw
  669. bcms            bcmspw, bcms
  670. bcnas           bcnspw
  671. blue            bluepw
  672. browse          looker, browsepw
  673. craft           crftpw, craftpw, crack
  674. cust            custpw
  675. enquiry         enquirypw
  676. field           support
  677. inads           indspw, inadspw, inads
  678. init            initpw
  679. kraft           kraftpw
  680. locate          locatepw
  681. maint           maintpw, rwmaint
  682. nms             nmspw
  683. rcust           rcustpw
  684. support         supportpw
  685. tech            field
  686.  
  687.  
  688. Taco Bell
  689. ~~~~~~~~~
  690. rgm             rollout
  691. tacobell        <null>
  692.  
  693.           
  694. Verifone Junior 2.05
  695. ~~~~~~~~~~~~~~~~~~~~
  696. Default password: 166816
  697.  
  698.  
  699. VMS
  700. ~~~
  701. field           service
  702. systest         utep
  703.  
  704.  
  705. 22. What port is XXX on?
  706.  
  707. The file /etc/services on most Unix machines lists the activity
  708. occurring on each port.  Here is the most complete port list in
  709. existence, originally presented in RFC 1340:
  710.  
  711. Keyword         Decimal    Description
  712. -------         -------    -----------
  713.                   0/tcp    Reserved
  714.                   0/udp    Reserved
  715. tcpmux            1/tcp    TCP Port Service Multiplexer
  716. tcpmux            1/udp    TCP Port Service Multiplexer
  717. compressnet       2/tcp    Management Utility
  718. compressnet       2/udp    Management Utility
  719. compressnet       3/tcp    Compression Process
  720. compressnet       3/udp    Compression Process
  721.                   4/tcp    Unassigned
  722.                   4/udp    Unassigned
  723. rje               5/tcp    Remote Job Entry
  724. rje               5/udp    Remote Job Entry
  725.                   6/tcp    Unassigned
  726.                   6/udp    Unassigned
  727. echo              7/tcp    Echo
  728. echo              7/udp    Echo
  729.                   8/tcp    Unassigned
  730.                   8/udp    Unassigned
  731. discard           9/tcp    Discard
  732. discard           9/udp    Discard
  733.                  10/tcp    Unassigned
  734.                  10/udp    Unassigned
  735. systat           11/tcp    Active Users
  736. systat           11/udp    Active Users
  737.                  12/tcp    Unassigned
  738.                  12/udp    Unassigned
  739. daytime          13/tcp    Daytime
  740. daytime          13/udp    Daytime
  741.                  14/tcp    Unassigned
  742.                  14/udp    Unassigned
  743.                  15/tcp    Unassigned [was netstat]
  744.                  15/udp    Unassigned
  745.                  16/tcp    Unassigned
  746.                  16/udp    Unassigned
  747. qotd             17/tcp    Quote of the Day
  748. qotd             17/udp    Quote of the Day
  749. msp              18/tcp    Message Send Protocol
  750. msp              18/udp    Message Send Protocol
  751. chargen          19/tcp    Character Generator
  752. chargen          19/udp    Character Generator
  753. ftp-data         20/tcp    File Transfer [Default Data]
  754. ftp-data         20/udp    File Transfer [Default Data]
  755. ftp              21/tcp    File Transfer [Control]
  756. ftp              21/udp    File Transfer [Control]
  757.                  22/tcp    Unassigned
  758.                  22/udp    Unassigned
  759. telnet           23/tcp    Telnet
  760. telnet           23/udp    Telnet
  761.                  24/tcp    any private mail system
  762.                  24/udp    any private mail system
  763. smtp             25/tcp    Simple Mail Transfer
  764. smtp             25/udp    Simple Mail Transfer
  765.                  26/tcp    Unassigned
  766.                  26/udp    Unassigned
  767. nsw-fe           27/tcp    NSW User System FE
  768. nsw-fe           27/udp    NSW User System FE
  769.                  28/tcp    Unassigned
  770.                  28/udp    Unassigned
  771. msg-icp          29/tcp    MSG ICP
  772. msg-icp          29/udp    MSG ICP
  773.                  30/tcp    Unassigned
  774.                  30/udp    Unassigned
  775. msg-auth         31/tcp    MSG Authentication
  776. msg-auth         31/udp    MSG Authentication
  777.                  32/tcp    Unassigned
  778.                  32/udp    Unassigned
  779. dsp              33/tcp    Display Support Protocol
  780. dsp              33/udp    Display Support Protocol
  781.                  34/tcp    Unassigned
  782.                  34/udp    Unassigned
  783.                  35/tcp    any private printer server
  784.                  35/udp    any private printer server
  785.                  36/tcp    Unassigned
  786.                  36/udp    Unassigned
  787. time             37/tcp    Time
  788. time             37/udp    Time
  789.                  38/tcp    Unassigned
  790.                  38/udp    Unassigned
  791. rlp              39/tcp    Resource Location Protocol
  792. rlp              39/udp    Resource Location Protocol
  793.                  40/tcp    Unassigned
  794.                  40/udp    Unassigned
  795. graphics         41/tcp    Graphics
  796. graphics         41/udp    Graphics
  797. nameserver       42/tcp    Host Name Server
  798. nameserver       42/udp    Host Name Server
  799. nicname          43/tcp    Who Is
  800. nicname          43/udp    Who Is
  801. mpm-flags        44/tcp    MPM FLAGS Protocol
  802. mpm-flags        44/udp    MPM FLAGS Protocol
  803. mpm              45/tcp    Message Processing Module [recv]
  804. mpm              45/udp    Message Processing Module [recv]
  805. mpm-snd          46/tcp    MPM [default send]
  806. mpm-snd          46/udp    MPM [default send]
  807. ni-ftp           47/tcp    NI FTP
  808. ni-ftp           47/udp    NI FTP
  809.                  48/tcp    Unassigned
  810.                  48/udp    Unassigned
  811. login            49/tcp    Login Host Protocol
  812. login            49/udp    Login Host Protocol
  813. re-mail-ck       50/tcp    Remote Mail Checking Protocol
  814. re-mail-ck       50/udp    Remote Mail Checking Protocol
  815. la-maint         51/tcp    IMP Logical Address Maintenance
  816. la-maint         51/udp    IMP Logical Address Maintenance
  817. xns-time         52/tcp    XNS Time Protocol
  818. xns-time         52/udp    XNS Time Protocol
  819. domain           53/tcp    Domain Name Server
  820. domain           53/udp    Domain Name Server
  821. xns-ch           54/tcp    XNS Clearinghouse
  822. xns-ch           54/udp    XNS Clearinghouse
  823. isi-gl           55/tcp    ISI Graphics Language
  824. isi-gl           55/udp    ISI Graphics Language
  825. xns-auth         56/tcp    XNS Authentication
  826. xns-auth         56/udp    XNS Authentication
  827.                  57/tcp    any private terminal access
  828.                  57/udp    any private terminal access
  829. xns-mail         58/tcp    XNS Mail
  830. xns-mail         58/udp    XNS Mail
  831.                  59/tcp    any private file service
  832.                  59/udp    any private file service
  833.                  60/tcp    Unassigned
  834.                  60/udp    Unassigned
  835. ni-mail          61/tcp    NI MAIL
  836. ni-mail          61/udp    NI MAIL
  837. acas             62/tcp    ACA Services
  838. acas             62/udp    ACA Services
  839. via-ftp          63/tcp    VIA Systems - FTP
  840. via-ftp          63/udp    VIA Systems - FTP
  841. covia            64/tcp    Communications Integrator (CI)
  842. covia            64/udp    Communications Integrator (CI)
  843. tacacs-ds        65/tcp    TACACS-Database Service
  844. tacacs-ds        65/udp    TACACS-Database Service
  845. sql*net          66/tcp    Oracle SQL*NET
  846. sql*net          66/udp    Oracle SQL*NET
  847. bootps           67/tcp    Bootstrap Protocol Server
  848. bootps           67/udp    Bootstrap Protocol Server
  849. bootpc           68/tcp    Bootstrap Protocol Client
  850. bootpc           68/udp    Bootstrap Protocol Client
  851. tftp             69/tcp    Trivial File Transfer
  852. tftp             69/udp    Trivial File Transfer
  853. gopher           70/tcp    Gopher
  854. gopher           70/udp    Gopher
  855. netrjs-1         71/tcp    Remote Job Service
  856. netrjs-1         71/udp    Remote Job Service
  857. netrjs-2         72/tcp    Remote Job Service
  858. netrjs-2         72/udp    Remote Job Service
  859. netrjs-3         73/tcp    Remote Job Service
  860. netrjs-3         73/udp    Remote Job Service
  861. netrjs-4         74/tcp    Remote Job Service
  862. netrjs-4         74/udp    Remote Job Service
  863.                  75/tcp    any private dial out service
  864.                  75/udp    any private dial out service
  865.                  76/tcp    Unassigned
  866.                  76/udp    Unassigned
  867.                  77/tcp    any private RJE service
  868.                  77/udp    any private RJE service
  869. vettcp           78/tcp    vettcp
  870. vettcp           78/udp    vettcp
  871. finger           79/tcp    Finger
  872. finger           79/udp    Finger
  873. www              80/tcp    World Wide Web HTTP
  874. www              80/udp    World Wide Web HTTP
  875. hosts2-ns        81/tcp    HOSTS2 Name Server
  876. hosts2-ns        81/udp    HOSTS2 Name Server
  877. xfer             82/tcp    XFER Utility
  878. xfer             82/udp    XFER Utility
  879. mit-ml-dev       83/tcp    MIT ML Device
  880. mit-ml-dev       83/udp    MIT ML Device
  881. ctf              84/tcp    Common Trace Facility
  882. ctf              84/udp    Common Trace Facility
  883. mit-ml-dev       85/tcp    MIT ML Device
  884. mit-ml-dev       85/udp    MIT ML Device
  885. mfcobol          86/tcp    Micro Focus Cobol
  886. mfcobol          86/udp    Micro Focus Cobol
  887.                  87/tcp    any private terminal link
  888.                  87/udp    any private terminal link
  889. kerberos         88/tcp    Kerberos
  890. kerberos         88/udp    Kerberos
  891. su-mit-tg        89/tcp    SU/MIT Telnet Gateway
  892. su-mit-tg        89/udp    SU/MIT Telnet Gateway
  893. dnsix            90/tcp    DNSIX Securit Attribute Token Map
  894. dnsix            90/udp    DNSIX Securit Attribute Token Map
  895. mit-dov          91/tcp    MIT Dover Spooler
  896. mit-dov          91/udp    MIT Dover Spooler
  897. npp              92/tcp    Network Printing Protocol
  898. npp              92/udp    Network Printing Protocol
  899. dcp              93/tcp    Device Control Protocol
  900. dcp              93/udp    Device Control Protocol
  901. objcall          94/tcp    Tivoli Object Dispatcher
  902. objcall          94/udp    Tivoli Object Dispatcher
  903. supdup           95/tcp    SUPDUP
  904. supdup           95/udp    SUPDUP
  905. dixie            96/tcp    DIXIE Protocol Specification
  906. dixie            96/udp    DIXIE Protocol Specification
  907. swift-rvf        97/tcp    Swift Remote Vitural File Protocol
  908. swift-rvf        97/udp    Swift Remote Vitural File Protocol
  909. tacnews          98/tcp    TAC News
  910. tacnews          98/udp    TAC News
  911. metagram         99/tcp    Metagram Relay
  912. metagram         99/udp    Metagram Relay
  913. newacct         100/tcp    [unauthorized use]
  914. hostname        101/tcp    NIC Host Name Server
  915. hostname        101/udp    NIC Host Name Server
  916. iso-tsap        102/tcp    ISO-TSAP
  917. iso-tsap        102/udp    ISO-TSAP
  918. gppitnp         103/tcp    Genesis Point-to-Point Trans Net
  919. gppitnp         103/udp    Genesis Point-to-Point Trans Net
  920. acr-nema        104/tcp    ACR-NEMA Digital Imag. & Comm. 300
  921. acr-nema        104/udp    ACR-NEMA Digital Imag. & Comm. 300
  922. csnet-ns        105/tcp    Mailbox Name Nameserver
  923. csnet-ns        105/udp    Mailbox Name Nameserver
  924. 3com-tsmux      106/tcp    3COM-TSMUX
  925. 3com-tsmux      106/udp    3COM-TSMUX
  926. rtelnet         107/tcp    Remote Telnet Service
  927. rtelnet         107/udp    Remote Telnet Service
  928. snagas          108/tcp    SNA Gateway Access Server
  929. snagas          108/udp    SNA Gateway Access Server
  930. pop2            109/tcp    Post Office Protocol - Version 2
  931. pop2            109/udp    Post Office Protocol - Version 2
  932. pop3            110/tcp    Post Office Protocol - Version 3
  933. pop3            110/udp    Post Office Protocol - Version 3
  934. sunrpc          111/tcp    SUN Remote Procedure Call
  935. sunrpc          111/udp    SUN Remote Procedure Call
  936. mcidas          112/tcp    McIDAS Data Transmission Protocol
  937. mcidas          112/udp    McIDAS Data Transmission Protocol
  938. auth            113/tcp    Authentication Service
  939. auth            113/udp    Authentication Service
  940. audionews       114/tcp    Audio News Multicast
  941. audionews       114/udp    Audio News Multicast
  942. sftp            115/tcp    Simple File Transfer Protocol
  943. sftp            115/udp    Simple File Transfer Protocol
  944. ansanotify      116/tcp    ANSA REX Notify
  945. ansanotify      116/udp    ANSA REX Notify
  946. uucp-path       117/tcp    UUCP Path Service
  947. uucp-path       117/udp    UUCP Path Service
  948. sqlserv         118/tcp    SQL Services
  949. sqlserv         118/udp    SQL Services
  950. nntp            119/tcp    Network News Transfer Protocol
  951. nntp            119/udp    Network News Transfer Protocol
  952. cfdptkt         120/tcp    CFDPTKT
  953. cfdptkt         120/udp    CFDPTKT
  954. erpc            121/tcp    Encore Expedited Remote Pro.Call
  955. erpc            121/udp    Encore Expedited Remote Pro.Call
  956. smakynet        122/tcp    SMAKYNET
  957. smakynet        122/udp    SMAKYNET
  958. ntp             123/tcp    Network Time Protocol
  959. ntp             123/udp    Network Time Protocol
  960. ansatrader      124/tcp    ANSA REX Trader
  961. ansatrader      124/udp    ANSA REX Trader
  962. locus-map       125/tcp    Locus PC-Interface Net Map Ser
  963. locus-map       125/udp    Locus PC-Interface Net Map Ser
  964. unitary         126/tcp    Unisys Unitary Login
  965. unitary         126/udp    Unisys Unitary Login
  966. locus-con       127/tcp    Locus PC-Interface Conn Server
  967. locus-con       127/udp    Locus PC-Interface Conn Server
  968. gss-xlicen      128/tcp    GSS X License Verification
  969. gss-xlicen      128/udp    GSS X License Verification
  970. pwdgen          129/tcp    Password Generator Protocol
  971. pwdgen          129/udp    Password Generator Protocol
  972. cisco-fna       130/tcp    cisco FNATIVE
  973. cisco-fna       130/udp    cisco FNATIVE
  974. cisco-tna       131/tcp    cisco TNATIVE
  975. cisco-tna       131/udp    cisco TNATIVE
  976. cisco-sys       132/tcp    cisco SYSMAINT
  977. cisco-sys       132/udp    cisco SYSMAINT
  978. statsrv         133/tcp    Statistics Service
  979. statsrv         133/udp    Statistics Service
  980. ingres-net      134/tcp    INGRES-NET Service
  981. ingres-net      134/udp    INGRES-NET Service
  982. loc-srv         135/tcp    Location Service
  983. loc-srv         135/udp    Location Service
  984. profile         136/tcp    PROFILE Naming System
  985. profile         136/udp    PROFILE Naming System
  986. netbios-ns      137/tcp    NETBIOS Name Service
  987. netbios-ns      137/udp    NETBIOS Name Service
  988. netbios-dgm     138/tcp    NETBIOS Datagram Service
  989. netbios-dgm     138/udp    NETBIOS Datagram Service
  990. netbios-ssn     139/tcp    NETBIOS Session Service
  991. netbios-ssn     139/udp    NETBIOS Session Service
  992. emfis-data      140/tcp    EMFIS Data Service
  993. emfis-data      140/udp    EMFIS Data Service
  994. emfis-cntl      141/tcp    EMFIS Control Service
  995. emfis-cntl      141/udp    EMFIS Control Service
  996. bl-idm          142/tcp    Britton-Lee IDM
  997. bl-idm          142/udp    Britton-Lee IDM
  998. imap2           143/tcp    Interim Mail Access Protocol v2
  999. imap2           143/udp    Interim Mail Access Protocol v2
  1000. news            144/tcp    NewS
  1001. news            144/udp    NewS
  1002. uaac            145/tcp    UAAC Protocol
  1003. uaac            145/udp    UAAC Protocol
  1004. iso-tp0         146/tcp    ISO-IP0
  1005. iso-tp0         146/udp    ISO-IP0
  1006. iso-ip          147/tcp    ISO-IP
  1007. iso-ip          147/udp    ISO-IP
  1008. cronus          148/tcp    CRONUS-SUPPORT
  1009. cronus          148/udp    CRONUS-SUPPORT
  1010. aed-512         149/tcp    AED 512 Emulation Service
  1011. aed-512         149/udp    AED 512 Emulation Service
  1012. sql-net         150/tcp    SQL-NET
  1013. sql-net         150/udp    SQL-NET
  1014. hems            151/tcp    HEMS
  1015. hems            151/udp    HEMS
  1016. bftp            152/tcp    Background File Transfer Program
  1017. bftp            152/udp    Background File Transfer Program
  1018. sgmp            153/tcp    SGMP
  1019. sgmp            153/udp    SGMP
  1020. netsc-prod      154/tcp    NETSC
  1021. netsc-prod      154/udp    NETSC
  1022. netsc-dev       155/tcp    NETSC
  1023. netsc-dev       155/udp    NETSC
  1024. sqlsrv          156/tcp    SQL Service
  1025. sqlsrv          156/udp    SQL Service
  1026. knet-cmp        157/tcp    KNET/VM Command/Message Protocol
  1027. knet-cmp        157/udp    KNET/VM Command/Message Protocol
  1028. pcmail-srv      158/tcp    PCMail Server
  1029. pcmail-srv      158/udp    PCMail Server
  1030. nss-routing     159/tcp   NSS-Routing
  1031. nss-routing     159/udp   NSS-Routing
  1032. sgmp-traps      160/tcp    SGMP-TRAPS
  1033. sgmp-traps      160/udp    SGMP-TRAPS
  1034. snmp            161/tcp    SNMP
  1035. snmp            161/udp    SNMP
  1036. snmptrap        162/tcp    SNMPTRAP
  1037. snmptrap        162/udp    SNMPTRAP
  1038. cmip-man        163/tcp    CMIP/TCP Manager
  1039. cmip-man        163/udp    CMIP/TCP Manager
  1040. cmip-agent      164/tcp    CMIP/TCP Agent
  1041. smip-agent      164/udp    CMIP/TCP Agent
  1042. xns-courier     165/tcp   Xerox
  1043. xns-courier     165/udp   Xerox
  1044. s-net           166/tcp    Sirius Systems
  1045. s-net           166/udp    Sirius Systems
  1046. namp            167/tcp    NAMP
  1047. namp            167/udp    NAMP
  1048. rsvd            168/tcp    RSVD
  1049. rsvd            168/udp    RSVD
  1050. send            169/tcp    SEND
  1051. send            169/udp    SEND
  1052. print-srv       170/tcp    Network PostScript
  1053. print-srv       170/udp    Network PostScript
  1054. multiplex       171/tcp    Network Innovations Multiplex
  1055. multiplex       171/udp    Network Innovations Multiplex
  1056. cl/1            172/tcp    Network Innovations CL/1
  1057. cl/1            172/udp    Network Innovations CL/1
  1058. xyplex-mux      173/tcp    Xyplex
  1059. xyplex-mux      173/udp    Xyplex
  1060. mailq           174/tcp    MAILQ
  1061. mailq           174/udp    MAILQ
  1062. vmnet           175/tcp    VMNET
  1063. vmnet           175/udp    VMNET
  1064. genrad-mux      176/tcp    GENRAD-MUX
  1065. genrad-mux      176/udp    GENRAD-MUX
  1066.